home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000090_ericboniface@chez.com_Tue May 20 12:21:47 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  67 lines

  1. Article: 14310 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!bloom-beacon.mit.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: ericboniface@chez.com (Eric)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Kermit/SSL-TLS : connection refused
  6. Date: 20 May 2003 08:57:01 -0700
  7. Organization: http://groups.google.com/
  8. Lines: 48
  9. Message-ID: <c30aaa81.0305200757.3e414319@posting.google.com>
  10. References: <c30aaa81.0305190714.f336f03@posting.google.com> <baatg9$fs7$1@watsol.cc.columbia.edu>
  11. NNTP-Posting-Host: 192.6.111.74
  12. Content-Type: text/plain; charset=ISO-8859-1
  13. Content-Transfer-Encoding: 8bit
  14. X-Trace: posting.google.com 1053446222 15433 127.0.0.1 (20 May 2003 15:57:02 GMT)
  15. X-Complaints-To: groups-abuse@google.com
  16. NNTP-Posting-Date: 20 May 2003 15:57:02 GMT
  17. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14310
  18.  
  19. fdc@columbia.edu (Frank da Cruz) wrote in message news:<baatg9$fs7$1@watsol.cc.columbia.edu>...
  20. > In article <c30aaa81.0305190714.f336f03@posting.google.com>,
  21. > Eric <ericboniface@chez.com> wrote:
  22. > : finally, kermit works fine under HPUX11 with Socks library (an HPUX11
  23. > : one, not dante).
  24. > : I can connect to outside FTP server on standard port (21).
  25. > :
  26. > Good.  For the benefit of others, could you explain exactly how you
  27. > did this?
  28. 1)Change in makefile 
  29. - add SOCKSLIB=-L/opt/socks/lib
  30. In hpux1100o+openssl:
  31. - add $(LIBS) to "LNKFLAGS=-s $(LNKFLAGS) $(LIBS)"
  32. - add  -DCK_SOCKS -DCK_SOCKS5 to KFLAGS
  33. - add $(SOCKSLIB) -lSocks to LIBS (Socks as the library is named
  34. libSocks.a)
  35. - check the order of -lssl -lcrypto (in this order)
  36. - removal of zlib reference as I do not use it.
  37. 2) Code changes : 
  38. - change ckcmai.c : comment SOCKSinit (as it does not exist in HPUX
  39. socks library)
  40. - change ckcnet.c & ckcftp.c : comment SOCKS* function (do not exist
  41. in socks library -
  42. generate an error during link step)
  43.  
  44. /* #define accept  SOCKSaccept
  45. #define bind    SOCKSbind
  46. #define connect SOCKSconnect
  47. #define getsockname SOCKSgetsockname
  48. #define listen SOCKSlisten
  49. #else  Not SOCKS 5 */
  50.  
  51. > : Now I try to connect to SSL/TLS FTP server, but I always have a (very
  52. > : quick) connection refused message.
  53. > : 
  54. > : I try to put verbose on, but I did not have any message.
  55. > : When I try to connect to "normal" site, I have verbose message.
  56. > : 
  57. > : Do you have some ideas ? 
  58. > : 
  59. > See:
  60. >   http://www.columbia.edu/kermit/k95faq.html#ftp
  61. It's really strange as I can not get any debugging information; I have
  62. instantaneously a connection refused message.
  63. On the server side, they do not have any trace of my tests.
  64.  
  65. Eric.
  66.